.banner{
    height: 330px; 
    position: relative;
    overflow: hidden;
}
.banner .bimg{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover; 

}
.banner .text{
    display: block;
    z-index: 4;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    color: white;
}
.banner .text h1{
    color: white;
}
.banner .text a{
    color: #FFF;
}

.container-md.row{
    margin: 0 auto;
    margin-top: 50px;
    
}
 .st{
    font-size: 16px; 
    display: block;
    width: 100%;
    color: #666;
    text-align: center;
 }
 .bt{
    font-size: 35px;
    text-align: center;
    width: 100%;

 }
 .icons{
    width: 70%;
    margin: 0 auto; 
    text-align: center;
    margin-top: 50px;
 }
 .icons i{
    font-size: 40px;
    width: 80px;
    height: 80px;
    border-radius: 999px;
    background: linear-gradient(45deg, #F08519, #ffc387);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
 }
 
 .icons h6{ 
    margin-top: 20px;
    font-size: 20px;
 }
 .icons  span,
 .icons  a{
    font-size: 14px;
    color: rgba(0, 0, 0, 0.541);
 }
 .icons > div{
    transition: 0.8s;
  
    padding: 20px;
    border-radius: 10px;
 }
 .icons > div:hover{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); 
    transform: translateY(-20px);
 }
 .form{
    background-color: #F4F4F4;
    padding: 60px 0;
    text-align: center;
    margin: 0 auto;
    margin-top: 50px;

 }
 .form .st{
    font-size: 16px; 
    display: block;
    width: 100%;
    color: #666;
    text-align: center;
 }
 .form .bt{
    font-size: 35px;
    text-align: center;
    width: 100%;

 }
 .form  label{
    display: flex;
    margin: 40px 0 20px 0;
    justify-content: space-between;
    
} 
 .form  label input {
    width: 32%;
    padding: 15px 20px;
    border: 1px solid #fff;
    transition: 0.4s;
 }
 .form textarea{
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #fff;
    height: 200px;
    transition: 0.4s;
 }
 .form textarea:hover,
 .form input:hover{
    border: 1px solid #F08519;
 }
 .form button{
    background-color: #000000;
    color:  #fff;
    margin-top: 30px;
    padding: 15px 70px;
    font-weight: 500;
    transition: 0.4s;
    border: none;
 }
 .form button:hover{
   background-color: #F08519;  
 }